home *** CD-ROM | disk | FTP | other *** search
- /* Provider Configuration Follows:
- Name FIN_TeleInetOpen ; Name for this configuration
- DialUp 1
- Interface slip ;
- InterfaceConfig "VJCMode=2 " ; Use Van Jacobson header compression
- NeedSerial 1
- IPDynamic 1 ; 1 = YES, 0 = NO
- IPAddr 0.0.0.0 ; IP-address if static
- DestIP
- Gateway
- Netmask
- NSDynamic 1 ; 1 = YES, 0 = NO
- UseBootP 1 ; 1 = YES, 0 = NO
- MTU 576 ; Provider specific
- Phone "10631063" ; phone numbers (separated with spaces)
- */
-
- /*
- * $Id: FIN_TeleInetOpen,v 4.1 1996/04/26 20:17:07 jraja Exp $
- *
- * AmiTCP/IP Dial Script for Telecom Finland INet Open
- *
- * Copyright © 1996 AmiTCP/IP Group,
- * Network Solutions Development Inc.
- * All rights reserved.
- *
- */
-
-
- options results
- signal on error
-
- Set WaitForTimeout 30
- Set InterCharDelay 20
-
- ShowConsole
-
- call CheckModemState
- /*
- * If modem is already online, assume that we have an existing
- * slip connection, and skip dialing and the login sequence
- */
- if (result = 0) then do
- call CommandState
- call Dial
- if (result != 0) then
- exit 10
-
- /*
- * Login sequence
- */
- WaitFor "your system."
- Pause 1
- end
-
- exit 0; /* succesfull exit */
-
- error:
- Say "TeleInetOpen: Command on line" SIGL "returned" RC ":" SerScript.LASTERROR
- Exit 10
-